Skip to main content

revUnixFromMacPath

Type

function

Summary

Converts a Mac OS-style pathname to a Unix-style pathname.

Syntax

revUnixFromMacPath(<macPathname> [, <convertOSX>])

Description

Use the revUnixFromMacPath function to convert a Mac OS-style file path to the LiveCode file path format (for example, to convert a pathname returned by an XFCN).

The revUnixFromMacPath function converts colons (:) to slashes (/), the folder-level delimiter for Unix pathnames. It also adjusts relative paths and absolute paths to be in Unix standard form.

On Mac OS systems, absolute paths always begin with the name of the disk that the file or folder is on. On OS X systems, the startup disk's name does not appear in absolute file paths. Instead, if a file or folder is on the startup disk, the first part of the file path is the top-level folder that the file is in. If a file or folder is on a disk other than the startup disk, its absolute path starts with "Volumes", followed by the disk name.

The OS X path convention is used by LiveCode, but the old Mac OS-style path convention is used by certain applications (such as AppleScript), even on OS X systems. If the convertOSX is true (or if you don't specify the convertOSX and the application is running under OS X), the revUnixFromMacPath function assumes that absolute paths are using the OS X convention. If the convertOSX is false, the revUnixFromMacPath function assumes that absolute paths use the Mac OS convention.

LiveCode always uses the Unix pathname standard for cross-platform compatibility. You need to convert the pathname only if you are passing it to another program or external. If you are using only LiveCode commands and functions, you do not need to convert the pathname, since LiveCode does it for you.

note

When included in a standalone application, the Common library is implemented as a hidden group and made available when the group receives its first openBackground message. During the first part of the application's startup process, before this message is sent, the revUnixFromMacPath function is not yet available. This may affect attempts to use this function in startup, preOpenStack, openStack, or preOpenCard handlers in the main stack. Once the application has finished starting up, the library is available and the revUnixFromMacPath function can be used in any handler.

Parameters

NameTypeDescription

macPathname

A file or folder pathname in the format used by the Mac OS for file paths.

convertOSX

Examples

revUnixFromMacPath("Disk:Folder:") -- returns "/Disk/Folder/"
answer file revUnixFromMacPath(someXFCN())
put revUnixFromMacPath(myValue,true)

command: answer file

control structure: function

glossary: application, standalone application, file path, main stack, OS X, relative file path, group, absolute file path, Mac OS, message, Unix, delimiter, handler

keyword: string

library: Common library, library

message: startup, openBackground, preOpenStack, openStack, preOpenCard

Compatibility and Support

Introduced

LiveCode 1.0

OS

mac

windows

linux

Platforms

desktop

server

Thank you for your feedback!

Was this page helpful?